home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 138
/
Volume 138 Aug 19 2011 - Damaged.iso
/
Games
/
mom_mania.swf
/
scripts
/
UILevelIntro.as
< prev
next >
Wrap
Text File
|
2011-08-19
|
1KB
|
57 lines
package
{
import flash.events.Event;
import mx.flash.UIMovieClip;
public dynamic class UILevelIntro extends UIMovieClip
{
public function UILevelIntro()
{
super();
addFrameScript(0,frame1,2,frame3,12,frame13,22,frame23,32,frame33,45,frame46);
}
function frame1() : *
{
stop();
}
function frame3() : *
{
this.dispatchEvent(new Event("onIntroIdle"));
this.dispatchEvent(new Event("hackButtonSounds"));
stop();
}
function frame23() : *
{
this.dispatchEvent(new Event("onIntroIdle"));
this.dispatchEvent(new Event("hackButtonSounds"));
stop();
}
function frame13() : *
{
this.dispatchEvent(new Event("onIntroIdle"));
this.dispatchEvent(new Event("hackButtonSounds"));
stop();
}
function frame46() : *
{
this.dispatchEvent(new Event("onIntroIdle"));
this.dispatchEvent(new Event("hackButtonSounds"));
stop();
}
function frame33() : *
{
this.dispatchEvent(new Event("onIntroIdle"));
this.dispatchEvent(new Event("hackButtonSounds"));
stop();
}
}
}